home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / doom / suckmods.zip / SUCKMODS.ZIP / suck05 / src / help.qc < prev    next >
Text File  |  1997-05-09  |  1KB  |  43 lines

  1. void() PrintHelp =
  2. {
  3.     sprint(self, "=================================\n");
  4.     sprint(self, "          ╙⌡πδ═∩Σ≤ Help\n");
  5.     sprint(self, "Impulses and their functions\n");
  6.     sprint(self, "20/Throw Ammo   21/Throw Weapon\n");
  7.     sprint(self, "23/Flag Status  24/Throw Rune\n");
  8.     sprint(self, "27/Rune Info    28/Group Power\n");
  9.     sprint(self, "29/Status ");
  10.     if (self.status_time != -1)
  11.         sprint(self, "off");
  12.     else
  13.         sprint(self, "on ");
  14.     sprint(self, "   101/Player Stats\n");
  15.     sprint(self, "98/Register     102/Lower Bar\n"); 
  16.     sprint(self, "103/Raise Bar   141/ID Player\n");
  17.     sprint(self, "More info is available at\nhttp://linux.mit.edu/quake\n");
  18.     sprint(self, "=================================\n");
  19. };
  20.  
  21. void() GroupPowerInfo =
  22. {
  23.     sprint(self, "=================================\n");
  24.     sprint(self, "Group power is very simple.  The \n");
  25.     sprint(self, "more teammates there are near you,\n");
  26.     sprint(self, "the higher your damage and your\n");
  27.     sprint(self, "resistance.  This is to encourage\n");
  28.     sprint(self, "group attacks and defense.\n");
  29.     sprint(self, "=================================\n");
  30.     
  31. };
  32.  
  33. void() RuneInfo =
  34. {
  35.     self.status_time = time;
  36.     if (self.displaying_rune_info == 1)
  37.         self.displaying_rune_info = 0;
  38.     else
  39.         self.displaying_rune_info = 1;
  40. };
  41.  
  42.  
  43.